home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / java / sql / Blob.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  560 b   |  29 lines

  1. package java.sql;
  2.  
  3. import java.io.InputStream;
  4. import java.io.OutputStream;
  5.  
  6. public interface Blob {
  7.    long length() throws SQLException;
  8.  
  9.    byte[] getBytes(long var1, int var3) throws SQLException;
  10.  
  11.    InputStream getBinaryStream() throws SQLException;
  12.  
  13.    long position(byte[] var1, long var2) throws SQLException;
  14.  
  15.    long position(Blob var1, long var2) throws SQLException;
  16.  
  17.    int setBytes(long var1, byte[] var3) throws SQLException;
  18.  
  19.    int setBytes(long var1, byte[] var3, int var4, int var5) throws SQLException;
  20.  
  21.    OutputStream setBinaryStream(long var1) throws SQLException;
  22.  
  23.    void truncate(long var1) throws SQLException;
  24.  
  25.    void free() throws SQLException;
  26.  
  27.    InputStream getBinaryStream(long var1, long var3) throws SQLException;
  28. }
  29.